home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000729_mackay@cs.washington.edu_Tue Jul 5 14:05:48 1994.msg < prev    next >
Internet Message Format  |  1994-10-11  |  1KB

  1. Received: from june.cs.washington.edu by cs.umb.edu with SMTP id AA08328
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Wed, 6 Jul 1994 00:05:50 -0400
  3. Return-Path: <mackay>
  4. Received: (mackay@localhost) by june.cs.washington.edu (8.6.9/7.2ju) id VAA22441; Tue, 5 Jul 1994 21:05:48 -0700
  5. Date: Tue, 5 Jul 1994 21:05:48 -0700
  6. From: mackay@cs.washington.edu (Pierre MacKay)
  7. Message-Id: <199407060405.VAA22441@june.cs.washington.edu>
  8. To: tex-k@cs.umb.edu
  9. Subject: script for latex209
  10. Cc: mackay@cs.washington.edu, unixtex@u.washington.edu
  11.  
  12.  
  13. Here is an attempt to anticipate as many environments as
  14. possible (regular TEXINPUTS, customized TEXINPUTS and no TEXINPUTS
  15. at all)
  16. Have I missed anything?
  17.  
  18. %- -------------------------------------
  19. #!/bin/sh
  20. #
  21. # Executable script to run latex209 in a LaTeX2e environment
  22. # P. A. Mackay mackay@cs.washington.edu
  23. #
  24. # Use this to override paths to LaTeX2e inputs
  25. INFILE=$1
  26. LIBROOT=/usr2/local/lib
  27. TEXMFROOT=${LIBROOT}/texmf
  28. # Get something into BASEINPUTS (default is current working directory)
  29. BASEINPUTS=${TEXINPUTS:=.}
  30. TEXINPUTS=${TEXMFROOT}/latex209//:$BASEINPUTS
  31. # now add the final : to pick up default paths
  32. TEXINPUTS=${TEXINPUTS}:
  33. export TEXINPUTS
  34. TEXFORMATS=${TEXFORMATS:=.:${TEXMFROOT}/ini}
  35. export TEXFORMATS
  36.  
  37. virtex \&latex209 $INFILE
  38.  
  39. %- -------------------------------------